home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / apps / math / ols.zoo / miscstri.c < prev    next >
C/C++ Source or Header  |  1993-04-16  |  182b  |  12 lines

  1. /* Miscellanous string routines */
  2.  
  3. char *
  4. strdup (char *s)
  5. {
  6.   char *tmp;
  7.  
  8.   tmp = (char *) malloc ((1 + strlen (s)) * sizeof (char));
  9.   strcpy (tmp, s);
  10.   return tmp;
  11. }
  12.